home *** CD-ROM | disk | FTP | other *** search
/ The Net Power 1996 March / Net Power 03 (March 1996).iso / prodigy / demo / transfer.dxr / 00002.ls < prev    next >
Encoding:
Text File  |  1995-10-24  |  465 b   |  15 lines

  1. on exitFrame
  2.   global gChannelForFreeFlash, gSmallButtonsOn, gFreeFlashTimerBase
  3.   if gSmallButtonsOn then
  4.     set timeDeltaTemp to the timer - gFreeFlashTimerBase
  5.     if (timeDeltaTemp > 45) and (timeDeltaTemp <= 75) then
  6.       set the visible of sprite gChannelForFreeFlash to 1
  7.     else
  8.       if timeDeltaTemp > 75 then
  9.         set the visible of sprite gChannelForFreeFlash to 0
  10.         set gFreeFlashTimerBase to the timer
  11.       end if
  12.     end if
  13.   end if
  14. end
  15.